home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / getinput.c < prev    next >
C/C++ Source or Header  |  1995-03-23  |  146b  |  11 lines

  1. #include "kiss.h"
  2.  
  3. int getinput (FILE *mystdin)
  4. {
  5.     char
  6.     line [LINELEN];
  7.     
  8.     fgets (line, LINELEN - 1, mystdin);
  9.     return (line [0]);
  10. }
  11.